home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / os-probes / mounted / 70hurd < prev    next >
Text File  |  2004-10-20  |  255b  |  17 lines

  1. #!/bin/sh
  2. set -e
  3.  
  4. . /usr/share/os-prober/common.sh
  5.  
  6. partition="$1"
  7. dir="$2"
  8. type="$3"
  9.  
  10. if [ -e "$dir/servers/exec" ] && [ -x "$dir/hurd/init" ]; then
  11.         label=$(count_next_label Hurd)
  12.     result "$partition:GNU/Hurd:$label:hurd"
  13.     exit 0
  14. else
  15.     exit 1
  16. fi
  17.